home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software of the Month Club 1996 April
/
Software of the Month Club 1996 April.iso
/
pc
/
os2
/
psutils
/
cmd
/
fixpsd~1.cmd
< prev
next >
Wrap
OS/2 REXX Batch file
|
1996-02-21
|
687b
|
28 lines
extproc perl5 -x
#! perl5
# fixpsditps: fix psdit output for use in psutils
#
# Copyright (C) Angus J. C. Duggan 1991-1995
# See file LICENSE for details.
$nesting = 0;
while (<>) {
if (/^\/p{pop showpage pagesave restore \/pagesave save def}def$/) {
print "/p{pop showpage pagesave restore}def\n";
} elsif (/^%%BeginDocument/ || /^%%BeginBinary/ || /^%%BeginFile/ ) {
print $_;
$nesting++;
} elsif (/^%%EndDocument/ || /^%%EndBinary/ || /^%%EndFile/) {
print $_;
$nesting--;
} elsif (/^%%Page:/ && $nesting == 0) {
print $_;
print "xi\n";
} elsif (! /^xi$/) {
print $_;
}
}
# End of Script